home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / an.arc / CATALOG.DOC < prev    next >
Text File  |  1989-09-28  |  6KB  |  144 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.             
  8.             
  9.             
  10.             **********************************************
  11.             *                                            *
  12.             *  Catalog.Exe  -  A File Cataloging System  *
  13.             *                                            *
  14.             **********************************************
  15.             
  16.             
  17.             History:
  18.             
  19.                  The catalog program is designed to help the users of
  20.             wordprocessors, spreadsheets and other programs.  A MS-DOS
  21.             file name is only 8 characters long, with a 3 character
  22.             suffix normally used to type a file.  It is hard to put a
  23.             meaningful file name into 8 characters.  The letter to John
  24.             Henry about buying more land in Alaska may get the file name
  25.             of JH-AK, or something just as unreadable.
  26.             
  27.             What Catalog will do:
  28.             
  29.                  Catalog will allow you to maintain a list of files of a
  30.             chosen suffix in a simple text file.  Descriptions of what
  31.             each file is for are then added after to the text file.
  32.             When files are added/deleted Catalog will redo the text file
  33.             to include the new files and remove any which have been
  34.             deleted.  Now anytime you can not remember a file name all
  35.             you have to do is check the Catalog.
  36.             
  37.             Running Catalog:
  38.             
  39.                  The full command for catalog is...
  40.             
  41.                       CATALOG <catalog file> <wildcard search>
  42.             
  43.                  The default catalog file name is CATALOG.DOC and the
  44.             default wildcard search is *.DOC.  This means is you just
  45.             type in CATALOG it will create a list of all the files with
  46.             the suffix .DOC and place the list in the file CATALOG.DOC.
  47.             
  48.                  You may change either of the two parameters. For
  49.             example  CATALOG CATALOG.PRN *.WKS would create a list of
  50.             all the worksheets in the current directory.
  51.             
  52.                  If you do not use the default catalog file you must
  53.             give the name of the catalog file each time you run CATALOG.
  54.             The search string is stored in the file, and will be reused
  55.             if an old catalog file is being updated.  CATALOG will also
  56.             check to verify that the same directory is being searched.
  57.             
  58.             Editing Tips:
  59.             
  60.  
  61.  
  62.  
  63.  
  64.  
  65.                  The catalog file is an ascii file.  The general layout
  66.             of the file must be maintained for CATALOG to be able to
  67.             update the file successfully.  If a wordprocessor is used to
  68.             edit the file, be sure no formatting characters are stored
  69.             in the file.
  70.             
  71.                  To edit the catalog from LOTUS do the following...
  72.             
  73.                       Start with a blank spreadsheet.
  74.                       Set column A to 11 characters wide.
  75.                       Set Unformatted print,
  76.                            Left Margin = 0,
  77.                            Right Margin = 240,
  78.                            Top Margin = 0,
  79.                            Bottom Margin = 0
  80.                       Save these settings in a file.
  81.                       Use File, Import, Text to retrieve the catalog
  82.                       Make any entries into column B
  83.                       Use Print, File to create a new catalog file.
  84.             
  85.                       To re-edit the file simply retrieve the blank
  86.             spreadsheet you saved and start at the File Import command.
  87.             
  88.             Modifying Catalog's defaults:
  89.             
  90.                  You may use debug to change the default setting for
  91.             Catalog.  The current locations are... (Always look before
  92.             you change as these locations may change with a new
  93.             version!)
  94.             
  95.                  Catalog file    - 302b
  96.                  Wildcard Search - 303b
  97.             
  98.                  Use debug to replace the current setting with whatever
  99.             you want.  Make sure you end your string with a (0) zero
  100.             byte, and that the filename and search string are valid.
  101.             There is 16 bytes of space reserved for each string so
  102.             ignore the special characters that are there. (They are
  103.             placed there to confuse EXEPACK.)
  104.             
  105.             Catalog's Needs:
  106.             
  107.                  The DOS SORT command must be available in the current
  108.             PATH string for Catalog to work.  Catalog needs a little bit
  109.             of file space to create a couple of temporary work files.
  110.             If you interrupt Catalog while it's working the file
  111.             CATALOG.DIR, CATALOG.TST, or CATALOG.NEW may be left on the
  112.             disk.
  113.             
  114.             About the Programmer:
  115.             
  116.                  My name is Don Schuster I run a small consulting
  117.             business in Los Angeles and have been programming on large
  118.             and small machines for about 12 years.  I believe in the
  119.  
  120.  
  121.  
  122.  
  123.  
  124.             concept of shareware.  If you send a donation of $5.00 or
  125.             more to me I will maintain a list of registered users and
  126.             directly inform you of upgrades and other such stuff.  If
  127.             you would like the source code (It's in C), send $50.00 and
  128.             it's yours (I'll throw in the diskette for nothing). Please
  129.             also let me know if there are improvements that would help
  130.             you use CATALOG on your computer.  The address for donations
  131.             and comments is...
  132.             
  133.                            Don Schuster
  134.                            Cadacus Consulting
  135.                            24458 Eilat Street
  136.                            Woodland Hills, CA  91367
  137.             
  138.             Copyright Notice:
  139.             
  140.                  The program and documentation may be freely copied and
  141.             used by anyone.  The code may not be altered in any way
  142.             without the express written permission of Don Schuster of
  143.             Cadacus Consulting.  A small (<$10.00) service fee may be
  144.             charged by services providing the program to users.